home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_09 / welstead / tssetlst.h < prev    next >
C/C++ Source or Header  |  1995-05-20  |  501b  |  24 lines

  1. // TSSETLST.H Example of a typical function assigning
  2. //   setup structure fields to an object_list
  3.  
  4. #ifndef TSSETLST_H
  5. #define TSSETLST_H
  6.  
  7. #include "cwobj.h"
  8.  
  9. #define MAX_ITEMS 10
  10. #define STR_DATA_LEN 40
  11.  
  12. typedef struct {
  13.       path_str input_file_name;
  14.       char str_data [STR_DATA_LEN + 1];
  15.       DWORD rect_color;
  16.       } setup_record;
  17.  
  18. void init_setup (setup_record *the_setup);
  19.  
  20. void setup_to_collection (setup_record *the_setup,
  21.    object_list *the_collection);
  22.  
  23. #endif
  24.